home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / jikes.lha / jikes-1.11 / src / lpginput.h < prev    next >
C/C++ Source or Header  |  1999-01-25  |  803b  |  26 lines

  1. // $Id: lpginput.h,v 1.3 1999/01/25 20:00:31 shields Exp $
  2. //
  3. // This software is subject to the terms of the IBM Jikes Compiler
  4. // License Agreement available at the following URL:
  5. // http://www.ibm.com/research/jikes.
  6. // Copyright (C) 1996, 1998, International Business Machines Corporation
  7. // and others.  All Rights Reserved.
  8. // You must accept the terms of that agreement to use this software.
  9. //
  10. #ifndef lpginput_INCLUDED
  11. #define lpginput_INCLUDED
  12.  
  13. #include "config.h"
  14. #include "stream.h"
  15.  
  16. typedef LexStream::TokenIndex TokenObject;
  17. typedef LexStream::TokenIndex Location;
  18.  
  19. inline Location Loc(TokenObject i) { return i; }
  20.  
  21. #include "javasym.h" /* mapping of lexical symbols  */
  22. #include "javadef.h" /* definition of parsing names */
  23. #include "javaprs.h" /* parsing action functions    */
  24.  
  25. #endif
  26.